home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_100 / 144_01 / words.hlp < prev   
Text File  |  1985-08-19  |  2KB  |  50 lines

  1. **********************************************************************
  2. *                              WORDS                                 *
  3. **********************************************************************
  4. *                  COPYRIGHT 1983 EUGENE H. MALLORY                  *
  5. **********************************************************************
  6. PROGRAM:
  7.     WORDS - Separate input into one word per line.
  8. USAGE:
  9.     WORDS [<fid] [-N] [-Ln] [-H] [>fid]
  10. FUNCTION:
  11.     This puts "words" from input onto separate output lines.
  12.     There are some options useful in setting up cross-references
  13.     and indexes.  These are:
  14.     
  15.     -N  Prefixes the word with a 7 digit line/page number 
  16.         and a space.
  17.     
  18.     -Ln Sets the "page" length.  The default is 1.  If n is
  19.         1, it causes the number to be the line number.  If n is
  20.         the page size (e.g. 66), it causes the number to be the 
  21.         page number.
  22.  
  23.     -H    Displays the available options.
  24.     
  25. EXAMPLE:
  26.     WORDS <FILE
  27.     WORDS <FILE |SORT |UNIQUE -N |SORT -R -L7 |2UP -L22 -N4
  28.           {Gives a word frequency count for file.}
  29. BUGS:
  30.     The definition of a "word" is simplistic.  Any string of
  31.     alphabetic characters will do.
  32.     
  33.  
  34.     
  35.         Command Line                       
  36.  
  37. ___________________________________  
  38.                                   |  
  39.                                   |  
  40.                                   |  OPTIONS
  41.                                   |  
  42.                                   |                  
  43.                     ______________V______________    
  44.  Standard Input     |                           |    Standard Output
  45.      TEXT           |                           |  WORDS (WITH NUMBERS)  
  46. ------------------->|           WORDS           |----------------------->
  47.                     |                           |
  48.                     |                           |
  49.                     |___________________________|
  50.